/**************
* ComboBoxes *
**************/
+dropdown > popover.menu.background > contents { padding: 0; } //allow search entries with no margin
+
dropdown,
combobox {
arrow {
button.combo { @extend %button_basic_drop_active; }
}
-}
-dropdown > popover listview > row {
- padding: 6px;
+ // newstyle
+ popover {
+ margin-top: 6px;
+ padding: 0;
+
+ listview {
+
+ margin: 8px 0;
+
+ &>row {
+ padding: 8px;
+
+ &:selected {
+ outline-color: $alt_focus_border_color;
+ color: $text-color;
+ background-color: $menu_selected_color;
+ }
+ }
+ }
+
+ .search { //drodowns with searchboxes on top
+ border-radius: $popover_radius $popover_radius 0 0;
+ padding: 3px 10px;
+ margin-top: -2px; //paint over the menu borders
+ }
+ }
}
+
// the combo is a composite widget so the way we do button linking doesn't
// work, special case needed. See
// https://bugzilla.gnome.org/show_bug.cgi?id=733979